home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
help
/
CONTINUATION
< prev
next >
Wrap
Text File
|
1994-09-21
|
755b
|
40 lines
CONTINUATION:
The continuation characters used in RLaB are `...'. This is
similar to the MATLAB v4.0 continuation. A statement can be
broken anywhwere, and continued on the next line if a
continuation (`...') is used.
Example:
> a = [1,2,3,...
> 4,5,6,...
> 7,8,9]
a =
matrix columns 1 thru 5
1 2 3 4 5
matrix columns 6 thru 9
6 7 8 9
> eye (2...
> ,2)
matrix columns 1 thru 2
1 0
0 1
Notice that:
> 23
23
Is not the same as:
> 2...
> 3
2
3
Tokens, such as variable names, numbers, commands, and
keywords can not be continued on the next line.